home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / fortran / yaf77-1.1 / yaf77-1 / yaf77 / F77ext / exit.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-15  |  73 b   |  7 lines

  1. #include <stdlib.h>
  2. void exit_(status)
  3. int *status;
  4. {
  5.   exit(*status);
  6. }
  7.